home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Multimedia / Resource Library: Multimedia.iso / hypertxt / msdos / hydos10 / for < prev    next >
Text File  |  1991-04-13  |  863b  |  22 lines

  1.                                     FOR
  2.           Repeats a command for several variables in a batch file.
  3.  
  4. COMMAND TYPE: Internal (batch)          VERSION: 2.0 and up
  5.  
  6. USE:  FOR %%var IN (set) DO command
  7.  
  8. %%var represents a variable that will be sequentially set to each value in
  9. set.  If the FOR command is used in a batch file, %%var must be used, if
  10. the FOR command is used at the DOS level, only one % is required.
  11.  
  12. set contains the actual values that %%var will represent when the command
  13. is executed.  willdcard file specifiers are allowed in set.
  14.  
  15. command is the DOS command that will be repeated.  In the command, %%var
  16. will be replaced by the value of the variable.
  17.  
  18. EXAMPLE: FOR %%g IN(*.TXT) DO TYPE %%g
  19.  
  20. when this command is encountered in a batch file, all files with the
  21. extension .TXT will be TYPEd (displayed on the screen).
  22.